home *** CD-ROM | disk | FTP | other *** search
/ Private Obsession 3: Sophia / Private Obsession 3: Sophia.iso / files / sshots.dxr / 00041.ls < prev    next >
Encoding:
Text File  |  1995-04-08  |  699 b   |  31 lines

  1. on startMovie
  2.   global startColorDepth
  3.   set the soundEnabled to 1
  4.   set the soundLevel to 7
  5.   updateStage()
  6. end
  7.  
  8. on setvolume
  9.   global where, currentvol
  10.   set where to (the mouseH - the left of sprite 33) * 1.0
  11.   set currentvol to where / the width of sprite 33 * 1.0 * 255
  12.   set the volume of sound 1 to integer(currentvol)
  13.   set the volume of sound 2 to integer(currentvol)
  14.   set the locH of sprite 36 to the mouseH + the width of cast 185
  15.   updateStage()
  16. end
  17.  
  18. on wait howlong
  19.   startTimer()
  20.   repeat while the timer < howlong
  21.     nothing()
  22.   end repeat
  23. end
  24.  
  25. on stopMovie
  26.   global startColorDepth
  27.   if the colorDepth <> startColorDepth then
  28.     set the colorDepth to startColorDepth
  29.   end if
  30. end
  31.